File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -139,14 +139,14 @@ shp = utilities.read_file(input="/path/to/boxes_shapefile.shp")
139139shp.head()
140140```
141141
142- If your shapefile does not include an ` image_path ` column, you must provide the raster path via ` rgb_path ` :
142+ If your shapefile does not include an ` image_path ` column, you must provide the raster path via ` img_path ` :
143143
144144``` python
145145from deepforest import utilities
146146
147147shp = utilities.read_file(
148148 input = " /path/to/boxes_shapefile.shp" ,
149- rgb_path = " /path/to/OSBS_029.tif"
149+ image_path = " /path/to/OSBS_029.tif"
150150)
151151```
152152
@@ -157,7 +157,7 @@ from deepforest import utilities
157157
158158shp = utilities.read_file(
159159 input = " /path/to/boxes_shapefile.shp" ,
160- rgb_path = " /path/to/OSBS_029.tif" ,
160+ image_path = " /path/to/OSBS_029.tif" ,
161161 label = " Tree"
162162)
163163```
You can’t perform that action at this time.
0 commit comments