Hi Ingsayyad,
Two ways to solve your problem:
1. Manually count all disabled images
2. Use following
Python script import PhotoScan
doc = PhotoScan.app.document
chunk = doc.chunk
x = 0
for camera in chunk.cameras:
if not camera.enabled:
x = x + 1
camera.selected = True
else:
camera.selected = False
print ('Disabled images: %d ' % x)
The script will show you the number of disabled images in the console (tested with PhotoScan 1.2.6).
If you cannot see the console, then open it by clicking VIEW > PANES > CONSOLE.
I hope that helps.
Regards,
SAV
P.S. To run this Python script, simply save it as
count_disabled.py and start it by clicking the Run Script icon (third from left in the CONSOLE pane) and then choosing the previously saved
count_disabled.py file.