Really thank you! It’s really useful materials
If someone need the same feature, here is a way how I completed it:
- Export image list of my project into
images.lst
- Create a file
4th.py
in the folder withimages.lst
with content:
with open('images.lst', 'r') as infile:
inputs = infile.readlines()
selected_inputs = [inputs[i].strip() for i in range(0, len(inputs), 4)]
with open('select_every_fourth.rccmd', 'w') as outfile:
for img in selected_inputs:
outfile.write(f'-selectImage "{img}" union\n')
- Run this python script.
- After successful running there will be a
select_every_fourth.rccmd
in same folder, drag-n-drop it into Reality Capture with opened project. - Wait when it will be done. For example, I waited selection of 4500 images about 30-40 seconds.