Fiche Data Prep

Action Principale : annotateImages

Code de préparation

Script en attente de validation
Copié !
1/* Create a CAS table with images and annotation data */
2PROC CAS;
3 LOADACTIONSET 'image';
4 /* Load images into a CAS table */
5 loadimages path='path/to/your/images' casout={name='my_images', caslib='casuser', replace=true};
6 /* Add columns for annotations */
7 altertable 'my_images' addcolumn={name='_points_', type='varchar'};
8 altertable 'my_images' addcolumn={name='_lines_', type='varchar'};
9 /* You would typically populate these columns with annotation data from another source or a previous analysis step */
10QUIT;
Actions utilisant ce script
  • image annotateImages En cours
  • Aucune autre action n'utilise ce script exact.