Action Principale : annotateImages
| 1 | /* Create a CAS table with images and annotation data */ |
| 2 | PROC 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 */ |
| 10 | QUIT; |