Merge pull request #26 from RentadroneCL/yolo3_tensorflow2

GPS_Panel_update
This commit is contained in:
Daniel Saavedra
2020-11-02 18:58:24 -03:00
committed by GitHub
16 changed files with 5128 additions and 50294 deletions

View File

@@ -1,2 +1,6 @@
/Data_set
/Fully-convolutional-neural-network-FCN-for-semantic-segmentation-Tensorflow-implementation-master
/Data_set_Segmentation
/El_Aguila
/El_Aguila_2020

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

729
GPS_Panel/Create_PDF.ipynb Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

BIN
GPS_Panel/Informe PV01.pdf Normal file

Binary file not shown.

File diff suppressed because one or more lines are too long

BIN
GPS_Panel/Prueba.pdf Normal file

Binary file not shown.

View File

@@ -4,7 +4,7 @@ import cv2
import matplotlib.pyplot as plt
from scipy import ndimage
from scipy import signal
import georasters as gr
def order_points_rect(pts):
@@ -301,4 +301,14 @@ def watershed_marked(thresh, min_Area = 100, threshold_median_Area = 3):
if Logic:
markers[markers == i] = 0
return Areas[L_Areas,:], dist_8u,markers
return Areas[L_Areas,:], dist_8u,markers
def pixel2gps(points, geot):
# transform pixel to gps coordinate
return np.vstack(gr.map_pixel_inv(points[:,1], points[:,0],geot[1],geot[-1], geot[0],geot[3])).T
def gps2pixel(points_coord, geot):
# transform gps coordinate to pixel
return np.flip(np.vstack(gr.map_pixel(points_coord[:,0], points_coord[:,1],geot[1],geot[-1], geot[0],geot[3])).T,1)

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB