RichiePete
Marine/Ocean
- Jul 8, 2001
- 2
Hello, I am currently writing an imaging program which will be used to count the number of objects (and their component pixels) within an image. My method of doing this is to have a variant array which stores the objects, I then have a second variant array within this first one relating to the pixel number, and a third to store the x and y coordinates. For example, the first x coordinate of the first element (pixel) of the first object will be;
Object(0)(0)(0) = 45
The object array is working correctly, but when I come to adding more elements within the first object array I have a syntax error and I can't understand why? For a pixel which is connected south-east on another pixel the code is:
If NorthWestPixel > 0 Then
c = 0 'x coord
d = 1 'y coord
For a = LBound(Object) To UBound(Object)
For b = LBound(Object(a)) To UBound(Object(a))
If Object(a)(b)(c) = nCol -1 And _
object(a)(b)(d) = nRow -1 Then
ReDim Preserve Object(a)(ubound(object(a))+1)
End If
Next b
Next a
End If
The Redim Preserve code just is not liked, does anyone have any suggestions?
Object(0)(0)(0) = 45
The object array is working correctly, but when I come to adding more elements within the first object array I have a syntax error and I can't understand why? For a pixel which is connected south-east on another pixel the code is:
If NorthWestPixel > 0 Then
c = 0 'x coord
d = 1 'y coord
For a = LBound(Object) To UBound(Object)
For b = LBound(Object(a)) To UBound(Object(a))
If Object(a)(b)(c) = nCol -1 And _
object(a)(b)(d) = nRow -1 Then
ReDim Preserve Object(a)(ubound(object(a))+1)
End If
Next b
Next a
End If
The Redim Preserve code just is not liked, does anyone have any suggestions?