You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Alternatively, we can make the change earlier in the algorithm before constantDensitySampling() as a way to save some time. The short-circuit would use the pixel centers as the sampling points so that all following code could remain the same.
The text was updated successfully, but these errors were encountered:
There should be a that indicates whether or not to use samples or all of the pixels within a polygon. For example:
n_.samples << n_.pixels
→ use samplesn_.samples >> n_.pixels
→ use all pixels within polygonRight now, sampling is done in this context:
Alternatively, we can make the change earlier in the algorithm before
constantDensitySampling()
as a way to save some time. The short-circuit would use the pixel centers as the sampling points so that all following code could remain the same.The text was updated successfully, but these errors were encountered: