@@ -75,19 +75,23 @@ def get_image(image_id: str, fields: list) -> str:
7575 8. computed_compass_angle - float, compass angle after running image processing
7676 9. computed_geometry - GeoJSON Point, location after running image processing
7777 10. computed_rotation - enum, corrected orientation of the image
78- 11. exif_orientation - enum, orientation of the camera as given by the exif tag
78+ 11. creator - the username and user ID who owns and uploaded the image
79+ 12. exif_orientation - enum, orientation of the camera as given by the exif tag
7980 (see: https://sylvana.net/jpegcrop/exif_orientation.html)
80- 12. geometry - GeoJSON Point geometry
81- 13. height - int, height of the original image uploaded
82- 14. thumb_256_url - string, URL to the 256px wide thumbnail
83- 15. thumb_1024_url - string, URL to the 1024px wide thumbnail
84- 16. thumb_2048_url - string, URL to the 2048px wide thumbnail
85- 17. merge_cc - int, id of the connected component of images that were aligned together
86- 18. mesh - { id: string, url: string } - URL to the mesh
87- 19. quality_score - float, how good the image is (experimental)
88- 20. sequence - string, ID of the sequence
89- 21. sfm_cluster - { id: string, url: string } - URL to the point cloud
90- 22. width - int, width of the original image uploaded
81+ 13. geometry - GeoJSON Point geometry
82+ 14. height - int, height of the original image uploaded
83+ 15. make - string, the manufacturer name of the camera device
84+ 16. model - string, the model or product series name of the camera device
85+ 17. thumb_256_url - string, URL to the 256px wide thumbnail
86+ 18. thumb_1024_url - string, URL to the 1024px wide thumbnail
87+ 19. thumb_2048_url - string, URL to the 2048px wide thumbnail
88+ 20. thumb_original_url - string, URL to the original wide thumbnail
89+ 21. merge_cc - int, id of the connected component of images that were aligned together
90+ 22. mesh - { id: string, url: string } - URL to the mesh
91+ 23. quality_score - float, how good the image is (experimental)
92+ 24. sequence - string, ID of the sequence
93+ 25. sfm_cluster - { id: string, url: string } - URL to the point cloud
94+ 26. width - int, width of the original image uploaded
9195 """
9296
9397 fields = Entities .__field_validity (
@@ -127,19 +131,23 @@ def get_images(
127131 8. computed_compass_angle - float, compass angle after running image processing
128132 9. computed_geometry - GeoJSON Point, location after running image processing
129133 10. computed_rotation - enum, corrected orientation of the image
130- 11. exif_orientation - enum, orientation of the camera as given by the exif tag
134+ 11. creator - the username and user ID who owns and uploaded the image
135+ 12. exif_orientation - enum, orientation of the camera as given by the exif tag
131136 (see: https://sylvana.net/jpegcrop/exif_orientation.html)
132- 12. geometry - GeoJSON Point geometry
133- 13. height - int, height of the original image uploaded
134- 14. thumb_256_url - string, URL to the 256px wide thumbnail
135- 15. thumb_1024_url - string, URL to the 1024px wide thumbnail
136- 16. thumb_2048_url - string, URL to the 2048px wide thumbnail
137- 17. merge_cc - int, id of the connected component of images that were aligned together
138- 18. mesh - { id: string, url: string } - URL to the mesh
139- 19. quality_score - float, how good the image is (experimental)
140- 20. sequence - string, ID of the sequence
141- 21. sfm_cluster - { id: string, url: string } - URL to the point cloud
142- 22. width - int, width of the original image uploaded
137+ 13. geometry - GeoJSON Point geometry
138+ 14. height - int, height of the original image uploaded
139+ 15. make - string, the manufacturer name of the camera device
140+ 16. model - string, the model or product series name of the camera device
141+ 17. thumb_256_url - string, URL to the 256px wide thumbnail
142+ 18. thumb_1024_url - string, URL to the 1024px wide thumbnail
143+ 19. thumb_2048_url - string, URL to the 2048px wide thumbnail
144+ 20. thumb_original_url - string, URL to the original wide thumbnail
145+ 21. merge_cc - int, id of the connected component of images that were aligned together
146+ 22. mesh - { id: string, url: string } - URL to the mesh
147+ 23. quality_score - float, how good the image is (experimental)
148+ 24. sequence - string, ID of the sequence
149+ 25. sfm_cluster - { id: string, url: string } - URL to the point cloud
150+ 26. width - int, width of the original image uploaded
143151
144152 Raises::
145153
@@ -373,12 +381,16 @@ def get_image_fields() -> list:
373381 "computed_compass_angle" ,
374382 "computed_geometry" ,
375383 "computed_rotation" ,
384+ "creator" ,
376385 "exif_orientation" ,
377386 "geometry" ,
378387 "height" ,
388+ "make" ,
389+ "model" ,
379390 "thumb_256_url" ,
380391 "thumb_1024_url" ,
381392 "thumb_2048_url" ,
393+ "thumb_original_url" ,
382394 "merge_cc" ,
383395 "mesh" ,
384396 "quality_score" ,
0 commit comments