Hoja de preparación de datos

Action Principale : annotateImages

Código de preparación

Script en espera de validación
¡Copiado!
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;
Acciones que utilizan este script
  • image annotateImages En cours
  • Ninguna otra acción utiliza este script exacto.