I need to know the "Minimum focus limit" of the 'm50 ptz camera'. #710
-
|
I would like to know the minimum focal length on the design of the m50 ptz camera. My application is to take a picture of an object at about 50 cm. Does anyone know where this information is written? My English is poor and I apologize if I have missed something. Please let me know where it is located. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
|
This automatically generated reply acts as a friendly reminder. Answers to your questions will most often come from the community, from developers like yourself. You will, from time to time, find that Axis employees answers some of the questions, but this is not a guarantee. Think of the discussion forum as a complement to other support channels, not a replacement to any of them. If your question remains unanswered for a period of time, please revisit it to see whether it can be improved by following the guidelines listed in Axis support guidelines. |
Beta Was this translation helpful? Give feedback.
-
|
Hi @kuroda-torch , |
Beta Was this translation helpful? Give feedback.
-
|
Hi @vivekatoffice I must apologize for not using the proper terminology. I wrote minimum focal length, but minimum focusing distance is correct. I understood that the focal length that I asked for and that you explained is the distance between the lens and the photographic element. I found that the number I seek is displayed in the attached screen. Unfortunately, I don't have a camera, so I can't know the value of this setting right now. |
Beta Was this translation helpful? Give feedback.
-
|
Hi @kuroda-torch , http://195.60.68.14/axis-cgi/com/ptz.cgi?query=attributes&camera=1&format=json
Response: {
"Camera 1": {
"panSpeed": "100",
"tiltSpeed": "100",
"speeds": [
{
"value": "1",
"speed": "1.8"
},
{
"value": "28",
"speed": "5"
},
{
"value": "40",
"speed": "11"
},
{
"value": "44",
"speed": "14"
},
{
"value": "62",
"speed": "37"
},
{
"value": "66",
"speed": "44"
},
{
"value": "73",
"speed": "59"
},
{
"value": "79",
"speed": "75"
},
{
"value": "84",
"speed": "90"
},
{
"value": "88",
"speed": "103"
},
{
"value": "93",
"speed": "121"
},
{
"value": "97",
"speed": "137"
},
{
"value": "100",
"speed": "150"
}
],
"focusSpeed": "20",
"minFocus": [
{
"value": "931",
"distance": "150"
},
{
"value": "4418",
"distance": "300"
},
{
"value": "5813",
"distance": "500"
},
{
"value": "6860",
"distance": "1000"
}
],
"queryInterval": "300",
"maxOpticalZoomMag": "10",
"maxDigitalZoomMag": "12",
"zoomSpeed": "100",
"zoomSteps": [
{
"value": "1",
"zoom": "1"
},
{
"value": "1111",
"zoom": "2"
},
{
"value": "2222",
"zoom": "3"
},
{
"value": "3333",
"zoom": "4"
},
{
"value": "4444",
"zoom": "5"
},
{
"value": "5555",
"zoom": "6"
},
{
"value": "6666",
"zoom": "7"
},
{
"value": "7777",
"zoom": "8"
},
{
"value": "8888",
"zoom": "9"
},
{
"value": "9999",
"zoom": "10"
},
{
"value": "10909",
"zoom": "20"
},
{
"value": "12727",
"zoom": "40"
},
{
"value": "14545",
"zoom": "60"
},
{
"value": "16363",
"zoom": "80"
},
{
"value": "18181",
"zoom": "100"
},
{
"value": "19999",
"zoom": "120"
}
]
}
}If you consider the Min Focus value: {
"minFocus": [
{
"value": "931",
"distance": "150" //1.5 m
},
{
"value": "4418",
"distance": "300" //3 m
},
{
"value": "5813",
"distance": "500" // 5 m
},
{
"value": "6860",
"distance": "1000" // 10 m
}
]
}
Then you can use the focus value using this VAPIX API: http://195.60.68.14/axis-cgi/com/ptz.cgi?focus=931&camera=1 |
Beta Was this translation helpful? Give feedback.
-
|
I greatly appreciate your prompt and accurate response. Thank you also for introducing me to VLTool. I have never heard of this before. It is very useful and I intend to make use of it. I mark this question as resolved. |
Beta Was this translation helpful? Give feedback.



Hi @kuroda-torch ,
I have one camera using the AXIS Virtual Loan Tool. Looks like it is using the following APIs:
Method: GET
URL:
Response:
{ "Camera 1": { "panSpeed": "100", "tiltSpeed": "100", "speeds": [ { "value": "1", "speed": "1.8" }, { "value": "28", "speed": "5" }, { "value": "40", "speed": "11" }, { "value": "44", "speed": "14" }, { …