Are we talking pure green (i.e. 0,255,0) or shades of green? If we're also looking at shades, then what's your tolerance? What about the areas of white, if it's the interior of the building you're looking at?...
How are you examining the pixels?
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
With Me.PictureBox1
Dim b As New Bitmap(.Image.Width, .Image.Height)
b = .Image
Dim s As Integer
For n As Integer = 1 To .Image.Width
For m As Integer = 1 To .Image.Height
Dim q As Color = b.GetPixel(n - 1, m - 1)
If q.G = 0 And q.R > 250 Then s = s + 1 'plan had red infill. Check for no green as well so white is excluded.
Next
Next
MsgBox(s)
End With
End Sub