Subject:
|
Re: Is it efficient to replace plates w/bricks in a plates studs up mosaic?
|
Newsgroups:
|
lugnet.build.mosaic
|
Date:
|
Tue, 8 Feb 2005 10:06:29 GMT
|
Viewed:
|
6615 times
|
| |
 | |
Bob,
One more suggestion:
Because there is no "brickwall"-structure in your MLCad results, it might not be
such a bad idea to alternately read lines from left to right and from right to
left.
In my program I also have something like this:
For I = 0 to LastRow
For J = 0 to LastColumn
read pixel(I,J)
...
Next J
Next I
Should become something like this:
For I = 0 to LastRow
If (I mod 2 = 0) Then
For J = 0 to LastColumn
read pixel(I,J)
...
Next J
Else
For J = LastColumn to 0 step -1
read pixel(I,J)
...
Next J
End If
Next I
If I do this while converting an image with the dithering process, I often get
lousy results. But if you use it in the second fase (conversion to MLCad -
piececount), it may be satisfying.
Maarten
|
|
Message has 1 Reply:
Message is in Reply To:
7 Messages in This Thread:     
    
    
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
This Message and its Replies on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|