I have a list of point and have to do erosion/dilation operations. I need a kind of 2d-array but can't find how to do in VisualWorks (I know there is a Array2d class in Squeak, but I must use VW).
|
feedback
|
|
Use simply a generic way: array of arrays:
| |||
feedback
|
|
Many Smalltalk implementation will have some kind of Matrix class, sometimes optimized, that will have methods such as #rowAt:columnAt: (or for brevity #at:at:). In GNU Smalltalk this is in package DhbNumericalMethods. Right now it is not optimized though. | |||
|
feedback
|
|
If you want to the operations to be efficient, study the VisualWorks Image class, protocol "image processing" and "bit processing". Build your own erosion/dilation operations based on primitives there. | |||
|
feedback
|