Forum

Author Topic: How can I change the camera reference parameter?  (Read 3825 times)

1104312139@gm.kuas.edu.tw

  • Newbie
  • *
  • Posts: 22
    • View Profile
How can I change the camera reference parameter?
« on: February 09, 2017, 01:36:59 PM »
Hello,
I want to change the camera accuracy,
but photoscan is not import it.
Where mistakes in my python?
Thanks you .
ps: 123.jpg is i wnat change parameter
       new2 is my python

Alexey Pasumansky

  • Agisoft Technical Support
  • Hero Member
  • *****
  • Posts: 14846
    • View Profile
Re: How can I change the camera reference parameter?
« Reply #1 on: February 09, 2017, 01:44:59 PM »
Hello,

In PhotoScan Pro 1.3 you need to use the following code to change general camera accuracy parameters:
Code: [Select]
chunk.camera_location_accuracy = ([0.001, 0.001, 0.001])
chunk.camera_rotation_accuracy = ([0.01, 0.01, 0.01])
So maybe you need to update from 1.2.6.
Best regards,
Alexey Pasumansky,
Agisoft LLC

1104312139@gm.kuas.edu.tw

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: How can I change the camera reference parameter?
« Reply #2 on: February 13, 2017, 03:14:40 PM »
Deer Alexey
Thanks you very much.
But i update 1.3 after orientation parameter (1.2.6) can't run script,
where the code error?
please what can i do ?
ps: new2 code
       asd.txt

Alexey Pasumansky

  • Agisoft Technical Support
  • Hero Member
  • *****
  • Posts: 14846
    • View Profile
Re: How can I change the camera reference parameter?
« Reply #3 on: February 13, 2017, 03:22:09 PM »
Hello,

You need to correct "format" option according to the Python API changes in the version 1.3:

Code: [Select]
chunk.loadReference(path, format = PhotoScan.ReferenceFormatCSV, columns = "nxyzabc", delimiter =",")
Best regards,
Alexey Pasumansky,
Agisoft LLC

1104312139@gm.kuas.edu.tw

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: How can I change the camera reference parameter?
« Reply #4 on: February 13, 2017, 05:07:37 PM »
Deer Alexey,
thanks you !! :-* :-*