tproduit / pic2map

QGIS plugin for camera orientation and interaction between a picture and the map (monoplotting).
22 stars 5 forks source link

ortho.py:420,421 imXLine and imYline #17

Open apiszcz opened 4 years ago

apiszcz commented 4 years ago

I'm guessing this is correct, however does it always ?assumes? Y is less than X? It appears that X (imX.shape) is the dimension used for both lines.

        #Create an array with the matrix of coordinates
        imXLine = imX.reshape((1, imX.shape[0]*imX.shape[1]))
        imYLine = imY.reshape((1, imX.shape[0]*imX.shape[1]))