Datenaufbereitungsblatt

Action Principale : annotateImages

Vorbereitungscode

Skript wartet auf Validierung
Kopiert!
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;
Aktionen, die dieses Skript verwenden
  • image annotateImages En cours
  • Keine andere Aktion verwendet dieses genaue Skript.