Data Prep Sheet

Action Principale : annotateImages

Preparation Code

Script awaiting validation
Copied!
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 using this script
  • image annotateImages En cours
  • No other action uses this exact script.